home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1997 August / Walnut Creek CDROM.7z / LISTINGS / V_12_01 / LETTERS.ZIP / PIZZA.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1993-09-14  |  317 b   |  21 lines

  1.  
  2. // pizza.cpp
  3. #include <iostream.h>
  4. #include <string.h>
  5.  
  6. struct PIZZA
  7. {
  8.     int key;
  9.     char stuff[10];
  10. };
  11.  
  12. main()
  13. {
  14.     PIZZA *myPizza = new PIZZA[10];
  15.     myPizza->key = 0;
  16.     strcpy(myPizza->stuff,"good food");
  17.     cout << myPizza[0].key << ": " << myPizza[0].stuff << endl;
  18.     return 0;
  19. }
  20.  
  21.